home *** CD-ROM | disk | FTP | other *** search
/ Aminet 32 / Aminet 32 (1999)(Schatztruhe)[!][Aug 1999].iso / Aminet / dev / lang / Python151_Src.lha / Python1.5_Source / Objects / protos / funcobject_protos.h < prev    next >
Text File  |  1998-01-26  |  311b  |  8 lines

  1.  
  2. /* funcobject.c */
  3. static PyObject *func_getattr ( PyFunctionObject *op , char *name );
  4. static void func_dealloc ( PyFunctionObject *op );
  5. static PyObject *func_repr ( PyFunctionObject *op );
  6. static int func_compare ( PyFunctionObject *f , PyFunctionObject *g );
  7. static long func_hash ( PyFunctionObject *f );
  8.